home *** CD-ROM | disk | FTP | other *** search
/ Scene Storm / Scene Storm - Volume 1.iso / coding / c / vbcc / machines / amiga68k / libsrc / stdio / fputs.c < prev    next >
Encoding:
C/C++ Source or Header  |  1995-07-10  |  214 b   |  12 lines

  1. #include <stdio.h>
  2.  
  3. int fputs(const char *s,FILE *f)
  4. /*  muss fputs wirklich nur irgendeinen pos. Wert zurueckgeben? */
  5. {
  6.     while(*s){
  7.         if(putc(*s,f)==EOF) return(EOF);
  8.         s++;
  9.     }
  10.     return(1);
  11. }
  12.